@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding doesn't break width */
}

/* Global resets and typography */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Prompt', sans-serif;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: hsl(0, 0%, 100%);
  display: block;
  padding-top: 64px; /* Same as nav height */
}

/* Navbar container */
nav {
  width: 100vw;
  height: 64px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  font-family: 'Prompt', sans-serif;
}

ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  max-width: 1200px;
}

.link {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  padding: 0.5rem;
  position: relative;
}

.link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #050505;
  border-radius: 5px;
  transform: scaleX(0);
  transition: all 0.6s ease;
  bottom: 0;
  left: 0;
}

.link:hover::before {
  transform: scaleX(1);
}

/* Full-Length Horizontal Image Section */
.horizontal-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: auto;
    overflow: hidden;
}

.scroll-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  transition: scroll-left 0.1s;
  width: 100%;
  height: 100%;
}

.scroll-container img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scroll-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 50px;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.left-btn { left: 10px; }
.right-btn { right: 10px; }

.scroll-btn:hover { color: #000; }

/* Dropdown styles for navbar menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  color: #222;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 12px 0;
  z-index: 999;
  font-size: 1rem;
}

.dropdown-menu li {
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  font-size: 1.08em;
  transition: background 0.2s;
  font-weight: bold;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Language Switcher */
.lang-switcher {
  background-color: #000000;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 0.5rem;
  transition: all 0.6s ease;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  outline: none;
  box-shadow: none;
  border: none;
}

.lang-switcher:hover {
  background-color: transparent;
  color: #000000;
}

.lang-switcher i { margin-right: 0.5rem; }

.lang-switcher::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000000;
  border-radius: 5px;
  transform: scaleX(0);
  transition: all 0.6s ease;
  bottom: 0;
  left: 0;
}

.lang-switcher:hover::before {
  transform: scaleX(1);
}

/* Footer styles */
.site-footer {
  width: 100%;
  text-align: center;
  padding: 18px 0 12px 0;
  font-size: 1rem;
  color: #888;
  background: #fff;
  font-family: 'Prompt', sans-serif;
  border-top: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer p {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #666;
}

.site-footer a {
  color: #007bff;
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

.site-footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  position: relative;
  top: -10px;
}

/* Social Icons Modern Style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.social-icons .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  font-size: 1.5rem;
}

/* Contact Section Styles */
.contact-container {
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    color: #333;
    line-height: 1.6;
    font-family: 'Prompt', sans-serif; /* Applied Prompt to whole container */
}

.contact-container h2 {
    color: #e44d26;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 3px solid #e44d26;
    margin-bottom: 30px;
}

.contact-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-info h3 {
    color: #e44d26;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.icon-box {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    min-width: 60px;
}

.phone-number {
    font-size: 1.1em;
    font-weight: 700;
    color: #e44d26;
    white-space: nowrap;
}

.request-box {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    font-family: 'Prompt', sans-serif;
}